royaloba 0 Junior Poster in Training

Hello guys,
im trying to connect to .dbf table every time i try to query from the table it gives a error
[Microsoft][ODBC Visual FoxPro]Operator/operand type ,mismatch

heres my sample code...

Dim conn As ADODB.Connection
        Dim squery As String
        Dim rs As ADODB.Recordset
        Set conn = New ADODB.Connection
        conn.Open "Driver={Microsoft Visual FoxPRO Driver};SourceDB=" & App.path & ";SourceType=DBF"
       
        squery = "Select * from employee where Card_no=" & Format(Enrollnumber, "00000") & ""
        Set rs = New ADODB.Recordset
        rs.Open squery, conn
        
        Text1.Text = rs!Fname

thanks..